iT邦幫忙

2024 iThome 鐵人賽

DAY 5
0
Python

30天自學Python系列 第 5

列表與字典的基本操作

  • 分享至 

  • xImage
  •  

今天是鐵人賽的第五天,我學習字典的應用。

創建字典
student = {'name': 'John', 'age': 25}

訪問值
name = student['name']
print('學生姓名:', name)

添加或更新鍵值對
student['age'] = 26
student['major'] = 'Computer Science'
print('更新後的學生資訊:', student)

刪除鍵值對
del student['age']
print('刪除年齡後的學生資訊:', student)

遍歷字典
print('遍歷學生資訊:')
for key, value in student.items():
print(key, value)


上一篇
列表與字典的基本操作
下一篇
函式的定義與調用
系列文
30天自學Python30
圖片
  直播研討會
圖片
{{ item.channelVendor }} {{ item.webinarstarted }} |
{{ formatDate(item.duration) }}
直播中

尚未有邦友留言

立即登入留言